home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 1.iso / dist / fw_mysql.idb / usr / freeware / share / mysql / my-example.cnf.z / my-example.cnf
Encoding:
Text File  |  1999-10-18  |  936 b   |  40 lines

  1. # Example mysql config file.
  2. # You can copy this to one of:
  3. # /usr/freeware/etc/my.cnf to set global options,
  4. # mysql-data-dir/my.cnf to set server-specific options (in this
  5. # installation this directory is /var/spool/mysql) or
  6. # ~/.my.cnf to set user-specific options.
  7. # One can use all long options that the program supports.
  8. # Run the program with --help to get a list of available options
  9.  
  10. # This will be passed to all mysql clients
  11. [client]
  12. #password    = my_password
  13. port        = 3306
  14. socket        = /tmp/mysql.sock
  15.  
  16. # Here is entries for some specific programs
  17. # The following values assume you have at least 32M ram
  18.  
  19. # The MySQL server
  20. [mysqld]
  21. port        = 3306
  22. socket        = /tmp/mysql.sock
  23. skip-locking
  24. set-variable    = key_buffer=16M
  25. set-variable    = max_allowed_packet=1M
  26. set-variable    = thread_stack=128K
  27. # Start logging
  28. log
  29.  
  30. [mysqldump]
  31. quick
  32. set-variable    = max_allowed_packet=16M
  33.  
  34. [mysql]
  35. no-auto-rehash
  36.  
  37. [isamchk]
  38. set-variable    = keybuffer=16M
  39.